home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MUTEXES.PAK / MUTEXDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  72 lines

  1. // mutexesDlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. // This sample application is derived from the Mutex application
  14. // distributed with Jeffrey Richter's "Advanced Windows" programming book
  15. // (Microsoft Press).  See the book for more information about Win32
  16. // programming topics, including thread synchronization.
  17.  
  18. class CCounterThread;
  19. class CDisplayThread;
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMutexesDlg dialog
  23.  
  24. class CMutexesDlg : public CDialog
  25. {
  26. // Construction
  27. public:
  28.     CMutexesDlg(CWnd* pParent = NULL);    // standard constructor
  29.  
  30. // Dialog Data
  31.     //{{AFX_DATA(CMutexesDlg)
  32.     enum { IDD = IDD_MUTEXES_DIALOG };
  33.         // NOTE: the ClassWizard will add data members here
  34.     //}}AFX_DATA
  35.  
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CMutexesDlg)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. public:
  43.     CString m_strNumber;
  44.  
  45.     CMutex m_mutex;
  46.  
  47.     CCounterThread*    m_pCounterThread;
  48.     CDisplayThread* m_pDisplayThread;
  49.  
  50.     void AddToListBox(LPCTSTR szBuffer);
  51.  
  52.     void OnPriorityChange(UINT nID);
  53.  
  54. // Implementation
  55. protected:
  56.     HICON m_hIcon;
  57.  
  58.     // Generated message map functions
  59.     //{{AFX_MSG(CMutexesDlg)
  60.     virtual BOOL OnInitDialog();
  61.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  62.     afx_msg void OnPaint();
  63.     afx_msg HCURSOR OnQueryDragIcon();
  64.     afx_msg void OnPriorityClassChange();
  65.     afx_msg void OnPriorityChangeCntr();
  66.     afx_msg void OnPriorityChangeDisp();
  67.     afx_msg void OnClose();
  68.     afx_msg void OnPause();
  69.     //}}AFX_MSG
  70.     DECLARE_MESSAGE_MAP()
  71. };
  72.